type net/http.timeoutError

8 uses

	net/http (current package)
		client.go#L733: 				err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
		client.go#L981: 		err = &timeoutError{err.Error() + " (Client.Timeout or context cancellation while reading body)"}
		transport.go#L2716: type timeoutError struct {
		transport.go#L2720: func (e *timeoutError) Error() string     { return e.err }
		transport.go#L2721: func (e *timeoutError) Timeout() bool     { return true }
		transport.go#L2722: func (e *timeoutError) Temporary() bool   { return true }
		transport.go#L2723: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
		transport.go#L2725: var errTimeout error = &timeoutError{"net/http: timeout awaiting response headers"}